public enum PinLineSpaceEnum extends java.lang.Enum<PinLineSpaceEnum>
Enum Constant and Description |
---|
N_180_INCH
n/180 英寸inch
|
N_60_INCH
n/60 英寸inch
|
ONE_EIGHTH_INCH
1/8 英寸inch
|
ONE_SIXTH_INCH
1/6 英寸inch
|
Modifier and Type | Method and Description |
---|---|
static PinLineSpaceEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PinLineSpaceEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PinLineSpaceEnum ONE_SIXTH_INCH
public static final PinLineSpaceEnum ONE_EIGHTH_INCH
public static final PinLineSpaceEnum N_180_INCH
public static final PinLineSpaceEnum N_60_INCH
public static PinLineSpaceEnum[] values()
for (PinLineSpaceEnum c : PinLineSpaceEnum.values()) System.out.println(c);
public static PinLineSpaceEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null